home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-10-20 | 596 b | 15 lines | [TEXT/ttxt] |
- if http_search_args = "" then
- return "<title>Map Test</title><isindex><A HREF=\"map.script\">" & ¬
- "<IMG SRC=\"MacHTTP.gif\" ismap></A><P>Click on the tiny WWW document in the icon...<P>"
- else
- set comma to offset of "," in http_search_args
- set theLast to count http_search_args
- set x to (text 1 thru (comma - 1) of http_search_args) + 0
- set y to (text (comma + 1) thru theLast of http_search_args) + 0
- end if
- if x < 16 and y < 16 then
- return "<title>Got Me</title> <h1>Got Me!</h1> x=" & x & " y=" & y
- else
- return "<title>Missed Me</title> <h1>Missed Me!</h1> x=" & x & " y=" & y
- end if
-